home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / dev / c / vbcc.lha / vbcc / machines / amiga68k / libsrc / string / strcmp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  219 b   |  12 lines

  1. #include <string.h>
  2.  
  3. int strcmp(const char *s1,const char *s2)
  4. /*  gehoert das so? */
  5. {
  6.     while(*s1==*s2){
  7.         if(!*s1) return(0);
  8.         s1++;s2++;
  9.     }
  10.     return(*(unsigned char *)s1-*(unsigned char *)s2);
  11. }
  12.